home *** CD-ROM | disk | FTP | other *** search
/ Aminet 32 / Aminet 32 (1999)(Schatztruhe)[!][Aug 1999].iso / Aminet / dev / lang / Python152_Src.lha / Python152_Source / Modules / protos / regexmodule.h < prev    next >
Text File  |  1999-04-25  |  1KB  |  17 lines

  1. static void reg_dealloc ( regexobject *re );
  2. static PyObject *makeresult ( struct re_registers *regs );
  3. static PyObject *regobj_match ( regexobject *re , PyObject *args );
  4. static PyObject *regobj_search ( regexobject *re , PyObject *args );
  5. static PyObject *group_from_index ( regexobject *re , PyObject *index );
  6. static PyObject *regobj_group ( regexobject *re , PyObject *args );
  7. static PyObject *regobj_getattr ( regexobject *re , char *name );
  8. static PyObject *newregexobject ( PyObject *pattern , PyObject *translate , PyObject *givenpat , PyObject *groupindex );
  9. static PyObject *regex_compile ( PyObject *self , PyObject *args );
  10. static PyObject *symcomp ( PyObject *pattern , PyObject *gdict );
  11. static PyObject *regex_symcomp ( PyObject *self , PyObject *args );
  12. static int update_cache ( PyObject *pat );
  13. static PyObject *regex_match ( PyObject *self , PyObject *args );
  14. static PyObject *regex_search ( PyObject *self , PyObject *args );
  15. static PyObject *regex_set_syntax ( PyObject *self , PyObject *args );
  16. static PyObject *regex_get_syntax ( PyObject *self , PyObject *args );
  17.